home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 3281 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  924 b 

  1. Path: news.atw.fullfeed.com!usenet
  2. From: sbaierl@sninw.com (Scott J. Baierl)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: H and L files
  5. Date: Fri, 19 Jan 1996 22:55:36 GMT
  6. Organization: Schneider National, Inc.
  7. Message-ID: <4dp7lg$o83@ray.atw.fullfeed.com>
  8. References: <Pine.SOL.3.91.960117225206.12395C-100000@eesun1>
  9. NNTP-Posting-Host: sbaierl.atw.fullfeed.com
  10. X-Newsreader: Forte Free Agent 1.0.82
  11.  
  12. Sanjay Joshi <joshi@eesun1.tamu.edu> wrote:
  13.  
  14. >Hi!
  15. >Can anybody tell me the difference between Library and Header files?
  16.  
  17. >Thanks
  18.  
  19. >Sanjay
  20.  
  21. This is a DOS/Windows slant.  Hope it helps.
  22.  
  23. .H (header) files generally contain compile time declarations that can
  24. be used by one or more code modules during compile time.
  25.  
  26. .L or .LIB (library) static link libraries generally contain link-time
  27. object code.  Otherwise, import libraries contain stubs to dynamic
  28. link library functions.  Libraries are created as the result of a
  29. compile.
  30.  
  31.